Route Groupes
https://nextjs.org/docs/app/building-your-application/routing/route-groups
通常、Next.js の app/ ディレクトリ配下の階層構造は、URL Path に影響を及ぼす
用途ごとに異なる layout.tsx を適用したい場合は、フォルダ名を ( ) で囲うことでこれを回避できる
Route Groups
https://scrapbox.io/files/66c6ffce92d521001c2d094c.png
単に URL Path に影響を及ぼさないディレクトリが作成したい場合は、ディレクトリ名に接頭辞として _ をつければ良い
コロケーション のために用いられる
Private Folder
https://nextjs.org/docs/app/building-your-application/routing/colocation#private-folders
https://scrapbox.io/files/66c6ffbbd40268001c26548b.png
e.g. _components
#Next.js #App_Router